Skip to content

从URL注入DLL - InjectFromUrl

函数简介

从网络URL下载DLL文件并注入到指定窗口进程,支持远程注入场景。(部分模式文件会落盘)

接口名称

InjectFromUrl

DLL调用

c
int32_t InjectFromUrl(int64_t instance, int64_t hwnd, const char* url, int32_t type, int32_t bypassGuard);

参数说明

参数名类型说明
instance长整数型OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。
hwnd长整数型目标窗口句柄, 可以通过SetMemoryHwndAsProcessId接口设置成传入进程ID。
url字符串DLL文件的下载URL地址。
type整数型注入类型:1 标准注入(CreateRemoteThread),2 驱动注入模式1,3 驱动注入模式2,4 驱动注入模式3。
bypassGuard整数型是否绕过保护:0 不绕过,1 尝试绕过常见反注入保护。

示例

SDK 调用

cpp
#include "OLAPlugServer.h"

OLAPlugServer ola;
int ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0);
csharp
using OLAPlug;

var ola = new OLAPlugServer();
int ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0);
python
from OLAPlugServer import OLAPlugServer

ola = OLAPlugServer()
ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0)
java
import com.olaplug.OLAPlugServer;

OLAPlugServer ola = new OLAPlugServer();
int ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0);
cpp
var ola = com("OlaPlug.OlaSoft")
var ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0)
vbscript
Set ola = CreateObject("OlaPlug.OlaSoft")
ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0)
text
.局部变量 ola, OLAPlug
ola.创建 ()
ret = ola.InjectFromUrl(hwnd, “C:\\test.txt”, 0, 0)
aardio
import OLAPlugServer;
var ola = OLAPlugServer();
var ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0);
text
变量 ola <类型 = OLAPlugServer>
ola = 新建 OLAPlugServer
整数 ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0)
cpp
#include "OLAPlugServer.h"

OLAPlugServer ola;
int32_t ret = ola.InjectFromUrl(hwnd, "C:\\test.txt", 0, 0);

原生 DLL 调用

cpp
InjectFromUrl(instance, hwnd, "C:\\test.txt", 0, 0);
csharp
using System.Runtime.InteropServices;
using System.Text;

[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int InjectFromUrl(long ola, int hwnd, string url, int type, int bypassGuard);

InjectFromUrl(instance, hwnd, "C:\\test.txt", 0, 0);
python
from ctypes import CDLL, c_int, c_int64, create_string_buffer

ola = CDLL("OLAPlug_x64.dll")
ola.CreateCOLAPlugInterFace.restype = c_int64
ola.InjectFromUrl(instance, hwnd, "C:\\test.txt", 0, 0)

返回值

返回值说明
1成功。
0失败。

注意事项

项目说明
URL必须可访问且指向有效的DLL文件URL必须可访问且指向有效的DLL文件。
网络连接需要网络连接,下载可能需要一定时间。
下载的DLL会临时保存到本地再进行注入下载的DLL会临时保存到本地再进行注入。
使用HTTPS协议确保传输安全建议使用HTTPS协议确保传输安全。
下载失败或DLL损坏会导致注入失败下载失败或DLL损坏会导致注入失败。
防火墙或杀毒软件可能会拦截下载防火墙或杀毒软件可能会拦截下载。
下载的临时文件会在注入后清理下载的临时文件会在注入后清理。
权限目标进程必须有足够的权限允许注入。
不同注入类型的成功率和兼容性可能不同不同注入类型的成功率和兼容性可能不同。
32位进程只能注入32位DLL32位进程只能注入32位DLL,64位进程只能注入64位DLL。
管理员权限注入系统进程或受保护进程需要管理员权限。